home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / vbs.dci < prev   
INI File  |  2003-12-12  |  1KB  |  92 lines

  1. [dim | Dim Statement]
  2. dim |
  3.  
  4. [if | If Statement]
  5. if | then
  6.  
  7. end if
  8.  
  9. [ifelse | If Then Else Statement]
  10. if | then
  11.  
  12. else
  13.  
  14. end if
  15.  
  16. [select | Select Case Statement]
  17. select case |
  18.   case
  19.   
  20.   case
  21.   
  22. end select
  23.  
  24. [selectelse | Selct Case Statement with else]
  25. select case |
  26.   case
  27.   
  28.   case
  29.   
  30.   case else
  31.   
  32. end select
  33.  
  34. [sub | Sub Declaration]
  35. sub |()
  36.  
  37. end sub
  38.  
  39. [func | Function Declaration]
  40. function |()
  41.  
  42. end function
  43.  
  44. [oe | Option Explicit]
  45. option explicit
  46.  
  47. [for | For Next Statement]
  48. for | =  to
  49.  
  50. next
  51.  
  52. [foreach | For Each Statement]
  53. for each | in
  54.  
  55. next
  56.  
  57. [whilewend | While Wend Statement]
  58. while |
  59.  
  60. wend
  61.  
  62. [doloopuntil | Do Loop Until Statement]
  63. do
  64.   |
  65. loop until
  66.  
  67. [dountilloop | Do Until Loop Statement]
  68. do until |
  69.  
  70. loop
  71.  
  72. [class | Class Declaration]
  73. class |
  74.  
  75. end class
  76.  
  77. [proplet | Property Let Declaration]
  78. property set |()
  79.  
  80. end property
  81.  
  82. [propget | Property Get Delclaration]
  83. property set |()
  84.  
  85. end property
  86.  
  87. [propset | Property Set Declaration]
  88. property set |()
  89.  
  90. end property
  91.  
  92.